home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-04-13 | 487 b | 26 lines | [TEXT/MPS ] |
- # Do from one to four generations of full GCC compilation, including
- # self-compilation. This script can take a very long time to run!
- #
- # Copyright © 1990 Apple Computer, Inc.
-
- set GCC "`Directory -q`"
- echo {GCC}
-
- set Commands "{GCC}Build:,{Commands}"
-
- if "{1}" >= 1
- BuildOneStage 1 "{GCC}"
- end
- if "{1}" >= 2
- BuildOneStage 2 "{GCC}"
- end
- if "{1}" >= 3
- BuildOneStage 3 "{GCC}"
- end
- if "{1}" >= 4
- BuildOneStage 4 "{GCC}"
- end
- if "{1}" >= 5
- echo "Sorry, can only do up to 4 stages"
- end
-